home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 626-637 / disk_635 / icons / unpackdisk < prev    next >
Text File  |  1992-05-06  |  940b  |  38 lines

  1. .K ""
  2. echo "This script will create a bootable demo disk set up to view"
  3. echo "the eight color icons."
  4. echo ""
  5.  
  6. ask "Do you have a blank disk ready?"
  7. if not WARN
  8.     echo "Try again when you do ..."
  9.     echo "All Done.  Click close gadget to get rid of window."
  10.     endcli
  11. endif
  12.  
  13. ask "Is floppy drive df1: free?"
  14. if not WARN
  15.     echo "You will need to do the unpacking yourself."
  16.     echo "All Done.  Click close gadget to get rid of window."
  17.     endcli
  18. endif
  19.  
  20. echo "Formatting and unpacking disk..."
  21.  
  22. sys:system/format drive df1: name Icons noicons
  23. :c/lha -x -a -m x Icons.lha Icons:
  24.  
  25. echo "Making disk bootable..."
  26. install df1:
  27.  
  28. echo "Copying selected items from your c: and libs: directory..."
  29. copy c:Assign Icons:c
  30. copy c:IPrefs Icons:c
  31. copy c:LoadWB Icons:c
  32. copy libs:diskfont.library Icons:libs
  33. copy libs:iffparse.library Icons:libs
  34.  
  35. echo "All Done.  Click close gadget to get rid of window."
  36. echo "Reboot with the demo disk to view the icons."
  37. endcli
  38.